-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove the ffaker sample data dependency (revised) #2163
Conversation
Continues the idea of #2082, this removes the dependency of ffaker but also yanks it out of the sample requirement. I generated a small data set with 15.times.map { FFaker::Name.first_name } etc.
@tvdeyen I didn't change the name arrays to use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I'totally fine with the array syntax 👌
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good by me, thanks for finishing this off sebastian
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @swcraig, nice work!
Thanks! |
ffaker was removed as a runtime dependency of Solidus. As of right now, this removal is only on Solidus master (but it is slated for v2.4). Even though this extension does not use ffaker directly, Solidus complains that its factories require the library and so the tests fail without this. PR removing ffaker from Solidus: solidusio/solidus#2163
Addresses comments brought up in @cbrunsdon's original PR.
Original PR description
Continues the idea of #2082, this removes the dependency of ffaker but
also yanks it out of the sample requirement. I generated a small data
set with 15.times.map { FFaker::Name.first_name } etc.